home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Subversive Component Hacks / DropKeyFrames / DropKeyFrames.r < prev    next >
Encoding:
Text File  |  2000-06-23  |  733 b   |  39 lines

  1. #define SystemSevenOrLater 1
  2. #define UseExtendedThingResource 1
  3.  
  4. #include "ConditionalMacros.r"
  5. #include "MacTypes.r"
  6. #include "Components.r"
  7. #include "ImageCodec.r"
  8.  
  9. #include "DropKeyFrames.h"
  10.  
  11. resource 'thng' (256) {
  12.     kVictimType,
  13.     kVictimSubType,
  14.     kCaptorManufacturer,
  15.     0,        0,        // Flags, Mask
  16.     0,        0,        // Code
  17.     'STR ',    256,    // Name
  18.     'STR ',    257,    // Info
  19.     0,    0,            // Icon
  20.     0,                // Zero version in a thng resource means "call me to find out"
  21.  
  22.     componentHasMultiplePlatforms | componentWantsUnregister,
  23.     0,
  24.     {
  25.         kVictimFlags | cmpWantsRegisterMessage, 
  26.         'cdek',
  27.         256,
  28.         platformPowerPC,
  29.     };
  30. };
  31.  
  32. resource 'STR ' (256) {
  33.     "DropKeyFrames"
  34. };
  35.  
  36. resource 'STR ' (257) {
  37.     "Captures another decompressor and makes it drop key frames."
  38. };
  39.